home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / print_p.h < prev    next >
C/C++ Source or Header  |  1993-10-07  |  1KB  |  27 lines

  1. #ifndef __PRINT_P_H__
  2. #define __PRINT_P_H__
  3.  
  4. extern _VOID_ print_string _P_((Lisp_Object string, Lisp_Object printcharfun));
  5. extern _VOID_ write_string _P_((char *data, int size));
  6. extern _VOID_ write_string_1 _P_((char *data, int size,
  7.                                   Lisp_Object printcharfun));
  8. extern _VOID_ temp_output_buffer_setup _P_((char *bufname));
  9. extern Lisp_Object internal_with_output_to_temp_buffer
  10.     _P_((char *bufname, Lisp_Object (*function)(Lisp_Object args),
  11.          Lisp_Object args));
  12. extern _VOID_ float_to_string _P_((unsigned char *buf, double data));
  13. extern _VOID_ print_interval _P_((INTERVAL interval,
  14.                                   Lisp_Object printcharfun));
  15. extern _VOID_ syms_of_print _P_((void));
  16.     
  17. DEFUN_P(Fwrite_char, (Lisp_Object ch, Lisp_Object printcharfun));
  18. DEFUN_P(Fwith_output_to_temp_buffer, (Lisp_Object args));
  19. DEFUN_P(Fterpri, (Lisp_Object printcharfun));
  20. DEFUN_P(Fprin1, (Lisp_Object obj, Lisp_Object printcharfun));
  21. DEFUN_P(Fprin1_to_string, (Lisp_Object obj, Lisp_Object noescape));
  22. DEFUN_P(Fprinc, (Lisp_Object obj, Lisp_Object printcharfun));
  23. DEFUN_P(Fprint, (Lisp_Object obj, Lisp_Object printcharfun));
  24. DEFUN_P(Fexternal_debugging_output, (Lisp_Object character));
  25.  
  26. #endif
  27.